mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
Add colormake
This commit is contained in:
parent
2accfa17d3
commit
9afc8bb1e0
20
pkgs/development/tools/build-managers/colormake/default.nix
Normal file
20
pkgs/development/tools/build-managers/colormake/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{stdenv, fetchgit, perl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "colormake-${version}";
|
||||||
|
version = "2.1.0";
|
||||||
|
|
||||||
|
buildInputs = [perl];
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://github.com/pagekite/Colormake.git;
|
||||||
|
rev = "66544f40d";
|
||||||
|
sha256 = "8e714c5540305d169989d9387dbac47b8b9fb2cfb424af7bcd412bfe684dc6d7";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp -fa colormake.pl colormake colormake-short clmake clmake-short $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
}
|
@ -615,6 +615,8 @@ let
|
|||||||
|
|
||||||
convertlit = callPackage ../tools/text/convertlit { };
|
convertlit = callPackage ../tools/text/convertlit { };
|
||||||
|
|
||||||
|
colormake = callPackage ../development/tools/build-managers/colormake { };
|
||||||
|
|
||||||
cowsay = callPackage ../tools/misc/cowsay { };
|
cowsay = callPackage ../tools/misc/cowsay { };
|
||||||
|
|
||||||
cuetools = callPackage ../tools/cd-dvd/cuetools { };
|
cuetools = callPackage ../tools/cd-dvd/cuetools { };
|
||||||
|
Loading…
Reference in New Issue
Block a user