ion-3: switch to pname+verison, format
This commit is contained in:
parent
d49083f40d
commit
86bf5eb0bb
1 changed files with 13 additions and 7 deletions
|
@ -1,19 +1,25 @@
|
||||||
{ lib, stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }:
|
{ lib, stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ion";
|
pname = "ion";
|
||||||
version = "3-20090110";
|
version = "3-20090110";
|
||||||
meta = {
|
|
||||||
description = "Tiling tabbed window manager designed with keyboard users in mind";
|
|
||||||
homepage = "http://modeemi.fi/~tuomov/ion";
|
|
||||||
platforms = with lib.platforms; linux;
|
|
||||||
license = lib.licenses.lgpl21;
|
|
||||||
};
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://tuomov.iki.fi/software/dl/ion-${version}.tar.gz";
|
url = "http://tuomov.iki.fi/software/dl/ion-${version}.tar.gz";
|
||||||
sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
|
sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ xlibsWrapper lua gettext groff ];
|
buildInputs = [ xlibsWrapper lua gettext groff ];
|
||||||
|
|
||||||
buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ];
|
buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ];
|
||||||
|
|
||||||
installFlags = [ "PREFIX=\${out}" ];
|
installFlags = [ "PREFIX=\${out}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tiling tabbed window manager designed with keyboard users in mind";
|
||||||
|
homepage = "http://modeemi.fi/~tuomov/ion";
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue