mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
27 lines
569 B
Nix
27 lines
569 B
Nix
{ stdenv
|
|
, fetchurl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "graphs";
|
|
version = "20161026";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sageupstream/${pname}/${pname}-${version}.tar.bz2";
|
|
sha256 = "0a2b5lly9nifphvknz88rrhfbbc8vqnlqcv19zdpfq8h8nnyjbb2";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/share/graphs"
|
|
cp * "$out/share/graphs/"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A database of graphs";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ timokau ];
|
|
};
|
|
}
|