about summary refs log tree commit diff
path: root/pkgs/tools/nix/npins/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/nix/npins/default.nix')
-rw-r--r--pkgs/tools/nix/npins/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/tools/nix/npins/default.nix b/pkgs/tools/nix/npins/default.nix
deleted file mode 100644
index 7ea75baab100..000000000000
--- a/pkgs/tools/nix/npins/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib
-, rustPlatform
-, makeWrapper
-, stdenv
-, darwin
-, callPackage
-
-  # runtime dependencies
-, nix # for nix-prefetch-url
-, nix-prefetch-git
-, git # for git ls-remote
-}:
-
-let
-  runtimePath = lib.makeBinPath [ nix nix-prefetch-git git ];
-  sources = (lib.importJSON ./sources.json).pins;
-in rustPlatform.buildRustPackage rec {
-  pname = "npins";
-  version = src.version;
-  src = passthru.mkSource sources.npins;
-
-  cargoHash = "sha256-YwMypBl+P1ygf4zUbkZlq4zPrOzf+lPOz2FLg2/xI3k=";
-
-  buildInputs = lib.optional stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security SystemConfiguration ]);
-  nativeBuildInputs = [ makeWrapper ];
-
-  # (Almost) all tests require internet
-  doCheck = false;
-
-  postFixup = ''
-    wrapProgram $out/bin/npins --prefix PATH : "${runtimePath}"
-  '';
-
-  meta = with lib; {
-    description = "Simple and convenient dependency pinning for Nix";
-    mainProgram = "npins";
-    homepage = "https://github.com/andir/npins";
-    license = licenses.eupl12;
-    maintainers = with maintainers; [ piegames ];
-  };
-
-  passthru.mkSource = callPackage ./source.nix {};
-}