commit d3809ac540ce41458a9e242032d6230018680cde Author: Jeeves Date: Sun Mar 30 21:10:17 2025 -0600 init diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..00c9b88 --- /dev/null +++ b/default.nix @@ -0,0 +1,29 @@ +{ pkgs ? import {} }: +pkgs.stdenv.mkDerivation { + pname = "rcomage"; + version = "1.1.2"; + + src = pkgs.fetchFromGitHub { + owner = "zingaburga"; + repo = "RCOMage"; + rev = "f5f01cf33d341b8dbc155809bc95f6bba5f8390b"; + hash = "sha256-U0cEr26ET7DdEK0ESGM0czpbCQmsL3PeRomArb45Cx4="; + }; + + nativeBuildInputs = with pkgs; [ + autoconf + automake + libtool + pkg-config + ]; + + buildInputs = with pkgs; [ + zlib + libxml2 + ]; + + preConfigure = "./autogen.sh"; + preBuild = '' + NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -fpermissive" + ''; +} diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..a47bfd9 --- /dev/null +++ b/flake.lock @@ -0,0 +1,61 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1743315132, + "narHash": "sha256-6hl6L/tRnwubHcA4pfUUtk542wn2Om+D4UnDhlDW9BE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "52faf482a3889b7619003c0daec593a1912fddc1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..89ad606 --- /dev/null +++ b/flake.nix @@ -0,0 +1,13 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, nixpkgs, flake-utils }: + flake-utils.lib.eachDefaultSystem (system: let + pkgs = nixpkgs.legacyPackages.${system}; + in { + packages.default = import ./default.nix { inherit pkgs; }; + }); +}