nixpkgs/pkgs/os-specific/linux/untie/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

27 lines
645 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "untie";
version = "0.3";
src = fetchurl {
url = "http://guichaz.free.fr/untie/files/${pname}-${version}.tar.bz2";
sha256 = "1334ngvbi4arcch462mzi5vxvxck4sy1nf0m58116d9xmx83ak0m";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Tool to run processes untied from some of the namespaces";
mainProgram = "untie";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.gpl2Plus;
};
passthru = {
updateInfo = {
downloadPage = "http://guichaz.free.fr/untie";
};
};
}