summary refs log tree commit diff
path: root/pkgs/os-specific/linux/untie/default.nix
blob: d6b88bfc467ee2b43189db50be36b75d5bd8d562 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "untie-${version}";
  version = "0.3";
  src = fetchurl {
    url = "http://guichaz.free.fr/untie/files/${name}.tar.bz2";
    sha256 = "1334ngvbi4arcch462mzi5vxvxck4sy1nf0m58116d9xmx83ak0m";
  };

  makeFlags = "PREFIX=$(out)";

  meta = with stdenv.lib; {
    description = "A tool to run processes untied from some of the namespaces";
    maintainers = with maintainers; [ raskin ];
    platforms = with platforms; linux;
  };

  passthru = {
    updateInfo = {
      downloadPage = "http://guichaz.free.fr/untie";
    };
  };
}