mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
25 lines
647 B
Nix
25 lines
647 B
Nix
{ lib, stdenv, callPackage, makeWrapper, jq, nix-prefetch-git }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "swiftpm2nix";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
install -vD ${./swiftpm2nix.sh} $out/bin/swiftpm2nix
|
|
wrapProgram $out/bin/$name \
|
|
--prefix PATH : ${lib.makeBinPath [ jq nix-prefetch-git ]} \
|
|
'';
|
|
|
|
preferLocalBuild = true;
|
|
|
|
passthru = callPackage ./support.nix { };
|
|
|
|
meta = {
|
|
description = "Generate a Nix expression to fetch swiftpm dependencies";
|
|
maintainers = with lib.maintainers; [ dtzWill trepetti dduan trundle stephank ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|