nix-pin: 0.1.2 -> 0.2.2

This commit is contained in:
Tim Cuthbertson 2018-04-22 10:28:11 +10:00
parent 313b5fce7b
commit 92f083af23

View file

@ -1,12 +1,12 @@
{ pkgs, stdenv, fetchFromGitHub, mypy, python3 }:
let self = stdenv.mkDerivation rec {
name = "nix-pin-${version}";
version = "0.1.2";
version = "0.2.2";
src = fetchFromGitHub {
owner = "timbertson";
repo = "nix-pin";
rev = "version-0.1.2";
sha256 = "1zwfb5198qzbjwivgiaxbwva9frgrrqaj92nw8vz95yi08pijssh";
rev = "version-0.2.2";
sha256 = "1kw43kzy4m6lnnif51r2a8i4vcgr7d4vqb1c75p7pk2b9y3jwxsz";
};
buildInputs = [ python3 mypy ];
buildPhase = ''
@ -16,12 +16,11 @@ let self = stdenv.mkDerivation rec {
mkdir "$out"
cp -r bin share "$out"
'';
passthru = {
callWithPins = path: args:
import "${self}/share/nix/call.nix" {
inherit pkgs path args;
};
};
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";