nixpkgs/pkgs/by-name/ni/nix-bundle/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

62 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 = pname;
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;
};
}