mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
colort: init at unstable-2017-03-13
This commit is contained in:
parent
16fff5ebce
commit
9eed726b4f
23
pkgs/applications/misc/colort/default.nix
Normal file
23
pkgs/applications/misc/colort/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "colort-unstable-2017-03-12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "neeasade";
|
||||
repo = "colort";
|
||||
rev = "8470190706f358dc807b4c26ec3453db7f0306b6";
|
||||
sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
make install PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A program for 'tinting' color values";
|
||||
homepage = https://github.com/neeasade/colort;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
@ -17693,6 +17693,8 @@ with pkgs;
|
||||
|
||||
crashplan = callPackage ../applications/backup/crashplan { };
|
||||
|
||||
colort = callPackage ../applications/misc/colort { };
|
||||
|
||||
e17gtk = callPackage ../misc/themes/e17gtk { };
|
||||
|
||||
epson-escpr = callPackage ../misc/drivers/epson-escpr { };
|
||||
|
Loading…
Reference in New Issue
Block a user