1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "untie";
5 version = "0.3";
6 src = fetchurl {
7 url = "http://guichaz.free.fr/untie/files/${pname}-${version}.tar.bz2";
8 sha256 = "1334ngvbi4arcch462mzi5vxvxck4sy1nf0m58116d9xmx83ak0m";
9 };
10
11 makeFlags = [ "PREFIX=$(out)" ];
12
13 meta = with lib; {
14 description = "A tool to run processes untied from some of the namespaces";
15 maintainers = with maintainers; [ raskin ];
16 platforms = platforms.linux;
17 license = licenses.gpl2Plus;
18 };
19
20 passthru = {
21 updateInfo = {
22 downloadPage = "http://guichaz.free.fr/untie";
23 };
24 };
25}