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

25 lines
583 B
Nix
Raw Normal View History

2015-04-02 14:15:17 +00:00
{ stdenv, fetchurl }:
2015-04-02 14:15:17 +00:00
stdenv.mkDerivation rec {
name = "untie-${version}";
version = "0.3";
src = fetchurl {
url = "http://guichaz.free.fr/untie/files/${name}.tar.bz2";
sha256 = "1334ngvbi4arcch462mzi5vxvxck4sy1nf0m58116d9xmx83ak0m";
};
2015-04-02 14:15:17 +00:00
makeFlags = "PREFIX=$(out)";
2015-04-02 14:15:17 +00:00
meta = with stdenv.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;
};
2015-04-02 14:15:17 +00:00
passthru = {
updateInfo = {
downloadPage = "http://guichaz.free.fr/untie";
};
};
2015-04-02 14:15:17 +00:00
}