about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/wily/default.nix
blob: aab3aecd7d693ad4669fb458fa997a1fbf996364 (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
25
26
27
{ stdenv, fetchurl, libX11, libXt } :

stdenv.mkDerivation rec {
  version = "0.13.42";
  pname = "wily";

  src = fetchurl {
    url = "mirror://sourceforge/wily/${pname}-${version}.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 ];
    platforms = platforms.unix;
  };
}