mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
18 lines
539 B
Nix
18 lines
539 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.2";
|
|
name = "reptyr-${version}";
|
|
src = fetchurl {
|
|
url = "https://github.com/nelhage/reptyr/archive/reptyr-${version}.tar.gz";
|
|
sha256 = "07pfl0rkgm8m3f3jy8r9l2yvnhf8lgllpsk3mh57mhzdxq8fagf7";
|
|
};
|
|
makeFlags = ["PREFIX=$(out)"];
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
|
license = stdenv.lib.licenses.mit;
|
|
description = ''A Linux tool to change controlling pty of a process'';
|
|
};
|
|
}
|