mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
23 lines
689 B
Nix
23 lines
689 B
Nix
|
{ stdenv, fetchurl, pkgconfig
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "gnuclad";
|
||
|
version = "0.2.4";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://launchpad.net/gnuclad/trunk/0.2/+download/${name}-${version}.tar.gz";
|
||
|
sha256 = "0ka2kscpjff7gflsargv3r9fdaxhkf3nym9mfaln3pnq6q7fwdki";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://launchpad.net/gnuclad;
|
||
|
description = "gnuclad tries to help the environment by creating trees. It's primary use will be generating cladogram trees for the GNU/Linux distro timeline project.";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ mog ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|