mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
wily: init at 0.13.42
This commit is contained in:
parent
89523c117b
commit
c5f54786a1
26
pkgs/applications/editors/wily/default.nix
Normal file
26
pkgs/applications/editors/wily/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -14824,6 +14824,8 @@ in
|
||||
|
||||
windowmaker = callPackage ../applications/window-managers/windowmaker { };
|
||||
|
||||
wily = callPackage ../applications/editors/wily { };
|
||||
|
||||
alsamixer.app = callPackage ../applications/window-managers/windowmaker/dockapps/alsamixer.app.nix { };
|
||||
|
||||
wmcalclock = callPackage ../applications/window-managers/windowmaker/dockapps/wmcalclock.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user