nox: Added expression
This commit is contained in:
parent
abf2f3fcc5
commit
8de8d5a639
29
pkgs/tools/package-management/nox/default.nix
Normal file
29
pkgs/tools/package-management/nox/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, pythonPackages, git, fetchgit, makeWrapper, nix }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
name = "nox-0.0.1";
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://github.com/madjar/nox.git";
|
||||
rev = "49e4bb7de473ac5e446a76c292bdaefa7e20a1c6";
|
||||
sha256 = "0z97anjhvf8qlyq73h3008np7qh1jvv3kafyxhcbjmi1hpimndyy";
|
||||
leaveDotGit = true; # required by pbr
|
||||
};
|
||||
|
||||
buildInputs = [ git pythonPackages.pbr makeWrapper ];
|
||||
|
||||
pythonPath =
|
||||
[ pythonPackages.dogpile_cache
|
||||
pythonPackages.click
|
||||
];
|
||||
|
||||
postInstall = "wrapProgram $out/bin/nox --prefix PATH : ${nix}/bin";
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/madjar/nox;
|
||||
description = "Tools to make nix nicer to use";
|
||||
maintainers = [ lib.maintainers.madjar ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
@ -1656,6 +1656,11 @@ let
|
||||
|
||||
notbit = callPackage ../applications/networking/notbit { };
|
||||
|
||||
nox = callPackage ../tools/package-management/nox {
|
||||
pythonPackages = python3Packages;
|
||||
nix = nixUnstable;
|
||||
};
|
||||
|
||||
nss_pam_ldapd = callPackage ../tools/networking/nss-pam-ldapd {};
|
||||
|
||||
ntfs3g = callPackage ../tools/filesystems/ntfs-3g { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user