Revert "nix-pin: add passthru.updateScript"

This reverts commit 146dabd4ac.

breaks evaluation
This commit is contained in:
Jörg Thalheim 2018-04-22 16:43:18 +01:00
parent 1cbf988217
commit b96cc8fb86

View file

@ -20,19 +20,6 @@ let self = stdenv.mkDerivation rec {
let api = import "${self}/share/nix/api.nix" { inherit pkgs; }; in
{
inherit (api) augmentedPkgs pins callPackage;
updateScript = ''
set -e
echo
cd ${toString ./.}
${pkgs.nix-update-source}/bin/nix-update-source \
--prompt version \
--replace-attr version \
--set owner timbertson \
--set repo nix-pin \
--set type fetchFromGitHub \
--set rev 'version-{version}' \
--modify-nix default.nix
'';
};
meta = with stdenv.lib; {
homepage = "https://github.com/timbertson/nix-pin";