Skip to content

Instantly share code, notes, and snippets.

@ck3d
Created February 25, 2023 15:47
Show Gist options
  • Save ck3d/51d9cf1bae30e24ca859a40a137d1744 to your computer and use it in GitHub Desktop.
Save ck3d/51d9cf1bae30e24ca859a40a137d1744 to your computer and use it in GitHub Desktop.
{ stdenv
, fetchurl
, autoconf
, automake
, libtool
, help2man
, bison
, flex
, texinfo
, gnulib
}:
stdenv.mkDerivation rec {
pname = "jitter";
version = "0.9.286";
src = fetchurl {
url = "https://git.ageinghacker.net/git/cgit.cgi/jitter/snapshot/${pname}-${version}.tar.xz";
sha256 = "sha256-syNpdWafGk5tIFn7oVcg97ZupS/BWXj/JMsdI2U9jCs=";
};
preConfigure = ''
./bootstrap --gnulib-srcdir=${gnulib.src} --no-git
'';
nativeBuildInputs = [
autoconf
automake
libtool
help2man
bison
flex
texinfo
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment