tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
colort: PR tweaks
Benjamin Staffin
9 years ago
14d676df
9eed726b
+5
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
colort
default.nix
+5
-7
pkgs/applications/misc/colort/default.nix
···
1
1
{ stdenv, fetchFromGitHub }:
2
2
3
3
-
stdenv.mkDerivation rec {
3
3
+
stdenv.mkDerivation {
4
4
name = "colort-unstable-2017-03-12";
5
5
6
6
src = fetchFromGitHub {
···
10
10
sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw";
11
11
};
12
12
13
13
-
installPhase = ''
14
14
-
make install PREFIX=$out
15
15
-
'';
13
13
+
makeFlags = ["PREFIX=$(out)"];
16
14
17
17
-
meta = {
15
15
+
meta = with stdenv.lib; {
18
16
description = "A program for 'tinting' color values";
19
17
homepage = https://github.com/neeasade/colort;
20
20
-
license = stdenv.lib.licenses.mit;
21
21
-
platforms = stdenv.lib.platforms.all;
18
18
+
license = licenses.mit;
19
19
+
platforms = platforms.all;
22
20
};
23
21
}