mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ 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.hostPlatform.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 {};
|
|
}
|