graphs: init at 20161026

This commit is contained in:
Timo Kaufmann
2018-04-24 16:10:46 +02:00
parent 83a839c4d4
commit 2f76f66998
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{ 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 ];
};
}