mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Merge pull request #7599 from jraygauthier/jrg/add_peru_pkg
Added peru package.
This commit is contained in:
commit
77857a8237
28
pkgs/applications/version-management/peru/default.nix
Normal file
28
pkgs/applications/version-management/peru/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.2.3";
|
||||||
|
in
|
||||||
|
|
||||||
|
python3Packages.buildPythonPackage rec {
|
||||||
|
|
||||||
|
# Do not prefix name with python specific version identifier.
|
||||||
|
namePrefix = "";
|
||||||
|
|
||||||
|
name = "peru-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "buildinspace";
|
||||||
|
repo = "peru";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "04bnaly50qmzkj0shdag94n8vr3ggarlqdny5zdb8nh31fqgln8b";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonPath = with python3Packages; [ pyyaml docopt ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/buildinspace/peru;
|
||||||
|
description = "A tool for including other people's code in your projects";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -12660,6 +12660,8 @@ let
|
|||||||
|
|
||||||
cura = callPackage ../applications/misc/cura { };
|
cura = callPackage ../applications/misc/cura { };
|
||||||
|
|
||||||
|
peru = callPackage ../applications/version-management/peru {};
|
||||||
|
|
||||||
printrun = callPackage ../applications/misc/printrun { };
|
printrun = callPackage ../applications/misc/printrun { };
|
||||||
|
|
||||||
sddm = callPackage ../applications/display-managers/sddm { };
|
sddm = callPackage ../applications/display-managers/sddm { };
|
||||||
|
Loading…
Reference in New Issue
Block a user