Skip to content

Instantly share code, notes, and snippets.

@siraben
Created January 9, 2019 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siraben/81fdb530c179d9d658c79d9214392be0 to your computer and use it in GitHub Desktop.
Save siraben/81fdb530c179d9d658c79d9214392be0 to your computer and use it in GitHub Desktop.
Building tilp under Nix
with import <nixpkgs> {};
lib.fix (self: {
tilp = stdenv.mkDerivation {
name = "tilp";
src = fetchurl {
url = "https://www.ticalc.org/pub/unix/tilp.tar.gz";
sha256 = "1mww2pjzvlbnjp2z57qf465nilfjmqi451marhc9ikmvzpvk9a3b";
};
nativeBuildInputs = [ autoreconfHook automake ];
buildInputs = [ glib ];
};
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment