Created
February 25, 2023 15:47
-
-
Save ck3d/51d9cf1bae30e24ca859a40a137d1744 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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