mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
xtrt: init at unstable-2021-02-17
This commit is contained in:
parent
7260e7c1e8
commit
6c80f90e03
2 changed files with 38 additions and 0 deletions
36
pkgs/tools/archivers/xtrt/default.nix
Normal file
36
pkgs/tools/archivers/xtrt/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ bzip2, fetchFromGitHub, gzip, gnutar, lib, stdenv, unzip, xz }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xtrt";
|
||||
version = "unstable-2021-02-17";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "figsoda";
|
||||
repo = pname;
|
||||
rev = "61884fb7c48c7e1e2194afd82b85f415a6dc7c20";
|
||||
sha256 = "073l4q6mx5if791p5a6w8m8bz2aypmjmycaijq4spql8bh6h12vf";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace xtrt \
|
||||
--replace "bzip2 " "${bzip2}/bin/bzip2 " \
|
||||
--replace "gzip " "${gzip}/bin/gzip " \
|
||||
--replace "tar " "${gnutar}/bin/tar " \
|
||||
--replace "unzip " "${unzip}/bin/unzip " \
|
||||
--replace "xz " "${xz}/bin/xz "
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/bin
|
||||
cp xtrt $out/bin
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tiny script to extract archives by their extensions";
|
||||
homepage = "https://github.com/figsoda/xtrt";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -748,6 +748,8 @@ in
|
|||
|
||||
metapixel = callPackage ../tools/graphics/metapixel { };
|
||||
|
||||
xtrt = callPackage ../tools/archivers/xtrt { };
|
||||
|
||||
yabridge = callPackage ../tools/audio/yabridge {
|
||||
wine = wineWowPackages.minimal;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue