mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 10:56:53 +00:00
27 lines
587 B
Nix
27 lines
587 B
Nix
|
{ stdenv, fetchurl, libX11, libXt } :
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
version = "0.13.42";
|
||
|
name = "wily-${version}";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/wily/${name}.tar.gz";
|
||
|
sha256 = "1jy4czk39sh365b0mjpj4d5wmymj98x163vmwzyx3j183jqrhm2z";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ libX11 libXt ];
|
||
|
|
||
|
configureFlags = [ "--prefix=$(out)" ];
|
||
|
|
||
|
preInstall = ''
|
||
|
mkdir -p $out/bin
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "An emulation of ACME";
|
||
|
homepage = http://wily.sourceforge.net;
|
||
|
license = licenses.artistic1;
|
||
|
maintainers = [ maintainers.vrthra ];
|
||
|
};
|
||
|
}
|