Revert "nix-pin: 0.1.2 -> 0.2.2"
This reverts commit 92f083af23
.
breaks evaluation
This commit is contained in:
parent
b96cc8fb86
commit
94d92fd046
@ -1,12 +1,12 @@
|
|||||||
{ pkgs, stdenv, fetchFromGitHub, mypy, python3 }:
|
{ pkgs, stdenv, fetchFromGitHub, mypy, python3 }:
|
||||||
let self = stdenv.mkDerivation rec {
|
let self = stdenv.mkDerivation rec {
|
||||||
name = "nix-pin-${version}";
|
name = "nix-pin-${version}";
|
||||||
version = "0.2.2";
|
version = "0.1.2";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "timbertson";
|
owner = "timbertson";
|
||||||
repo = "nix-pin";
|
repo = "nix-pin";
|
||||||
rev = "version-0.2.2";
|
rev = "version-0.1.2";
|
||||||
sha256 = "1kw43kzy4m6lnnif51r2a8i4vcgr7d4vqb1c75p7pk2b9y3jwxsz";
|
sha256 = "1zwfb5198qzbjwivgiaxbwva9frgrrqaj92nw8vz95yi08pijssh";
|
||||||
};
|
};
|
||||||
buildInputs = [ python3 mypy ];
|
buildInputs = [ python3 mypy ];
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
@ -16,10 +16,11 @@ let self = stdenv.mkDerivation rec {
|
|||||||
mkdir "$out"
|
mkdir "$out"
|
||||||
cp -r bin share "$out"
|
cp -r bin share "$out"
|
||||||
'';
|
'';
|
||||||
passthru =
|
passthru = {
|
||||||
let api = import "${self}/share/nix/api.nix" { inherit pkgs; }; in
|
callWithPins = path: args:
|
||||||
{
|
import "${self}/share/nix/call.nix" {
|
||||||
inherit (api) augmentedPkgs pins callPackage;
|
inherit pkgs path args;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/timbertson/nix-pin";
|
homepage = "https://github.com/timbertson/nix-pin";
|
||||||
|
Loading…
Reference in New Issue
Block a user