nixpkgs/pkgs/os-specific/linux/untie/default.nix

26 lines
620 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-04-02 14:15:17 +00:00
stdenv.mkDerivation rec {
pname = "untie";
2015-04-02 14:15:17 +00:00
version = "0.3";
src = fetchurl {
url = "http://guichaz.free.fr/untie/files/${pname}-${version}.tar.bz2";
2015-04-02 14:15:17 +00:00
sha256 = "1334ngvbi4arcch462mzi5vxvxck4sy1nf0m58116d9xmx83ak0m";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A tool to run processes untied from some of the namespaces";
2015-04-02 14:15:17 +00:00
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
2018-08-04 14:22:42 +00:00
license = licenses.gpl2Plus;
};
2015-04-02 14:15:17 +00:00
passthru = {
updateInfo = {
downloadPage = "http://guichaz.free.fr/untie";
};
};
2015-04-02 14:15:17 +00:00
}