Files
nixpkgs/pkgs/by-name/ni/nix-bundle/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

63 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
bzip2,
coreutils,
gnutar,
gzip,
makeWrapper,
nix,
}:
stdenv.mkDerivation rec {
pname = "nix-bundle";
version = "0.4.1";
src = fetchFromGitHub {
owner = "matthewbauer";
repo = "nix-bundle";
rev = "v${version}";
sha256 = "0js8spwjvw6kjxz1i072scd035fhiyazixvn84ibdnw8dx087gjv";
};
nativeBuildInputs = [ makeWrapper ];
# coreutils, gnutar are needed by nix for bootstrap
buildInputs = [
bzip2
coreutils
gnutar
gzip
nix
];
makeFlags = [ "PREFIX=$(out)" ];
postInstall = ''
mkdir -p $out/bin
makeWrapper $out/share/nix-bundle/nix-bundle.sh $out/bin/nix-bundle \
--prefix PATH : ${lib.makeBinPath buildInputs}
ln -s $out/share/nix-bundle/nix-run.sh $out/bin/nix-run
'';
meta = with lib; {
homepage = "https://github.com/matthewbauer/nix-bundle";
description = "Create bundles from Nixpkgs attributes";
longDescription = ''
nix-bundle is a way to package Nix attributes into single-file
executables.
Benefits:
- Single-file output
- Can be run by non-root users
- No runtime
- Distro agnostic
- No installation
'';
license = licenses.mit;
maintainers = [ maintainers.matthewbauer ];
platforms = platforms.all;
};
}