tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
parse-cli-bin: add license
Markus Kowalewski
7 years ago
9eb92fc5
61020d5f
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
parse-cli-bin
default.nix
+2
-1
pkgs/development/tools/parse-cli-bin/default.nix
···
13
description = "Parse Command Line Interface";
14
homepage = "https://parse.com";
15
platforms = platforms.linux;
0
16
};
17
18
phases = "installPhase";
···
22
cp "$src" "$out/bin/parse"
23
chmod +x "$out/bin/parse"
24
'';
25
-
}
···
13
description = "Parse Command Line Interface";
14
homepage = "https://parse.com";
15
platforms = platforms.linux;
16
+
license = licenses.bsd3;
17
};
18
19
phases = "installPhase";
···
23
cp "$src" "$out/bin/parse"
24
chmod +x "$out/bin/parse"
25
'';
26
+
}