graphs: init at 20161026
This commit is contained in:
parent
83a839c4d4
commit
2f76f66998
26
pkgs/data/misc/graphs/default.nix
Normal file
26
pkgs/data/misc/graphs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -14600,6 +14600,8 @@ with pkgs;
|
||||
|
||||
fixedsys-excelsior = callPackage ../data/fonts/fixedsys-excelsior { };
|
||||
|
||||
graphs = callPackage ../data/misc/graphs { };
|
||||
|
||||
emacs-all-the-icons-fonts = callPackage ../data/fonts/emacs-all-the-icons-fonts { };
|
||||
|
||||
emojione = callPackage ../data/fonts/emojione {
|
||||
|
Loading…
Reference in New Issue
Block a user