Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
2025-04-08 02:57:25 -04: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;
};
}