b96cc8fb86
This reverts commit 146dabd4ac
.
breaks evaluation
31 lines
860 B
Nix
31 lines
860 B
Nix
{ pkgs, stdenv, fetchFromGitHub, mypy, python3 }:
|
|
let self = stdenv.mkDerivation rec {
|
|
name = "nix-pin-${version}";
|
|
version = "0.2.2";
|
|
src = fetchFromGitHub {
|
|
owner = "timbertson";
|
|
repo = "nix-pin";
|
|
rev = "version-0.2.2";
|
|
sha256 = "1kw43kzy4m6lnnif51r2a8i4vcgr7d4vqb1c75p7pk2b9y3jwxsz";
|
|
};
|
|
buildInputs = [ python3 mypy ];
|
|
buildPhase = ''
|
|
mypy bin/*
|
|
'';
|
|
installPhase = ''
|
|
mkdir "$out"
|
|
cp -r bin share "$out"
|
|
'';
|
|
passthru =
|
|
let api = import "${self}/share/nix/api.nix" { inherit pkgs; }; in
|
|
{
|
|
inherit (api) augmentedPkgs pins callPackage;
|
|
};
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/timbertson/nix-pin";
|
|
description = "nixpkgs development utility";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.timbertson ];
|
|
platforms = platforms.all;
|
|
};
|
|
}; in self
|