ion-3: switch to pname+verison, format

+13 -7
+13 -7
pkgs/applications/window-managers/ion-3/default.nix
··· 1 1 { lib, stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "ion"; 4 + pname = "ion"; 5 5 version = "3-20090110"; 6 - meta = { 7 - description = "Tiling tabbed window manager designed with keyboard users in mind"; 8 - homepage = "http://modeemi.fi/~tuomov/ion"; 9 - platforms = with lib.platforms; linux; 10 - license = lib.licenses.lgpl21; 11 - }; 6 + 12 7 src = fetchurl { 13 8 url = "http://tuomov.iki.fi/software/dl/ion-${version}.tar.gz"; 14 9 sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns"; 15 10 }; 11 + 16 12 buildInputs = [ xlibsWrapper lua gettext groff ]; 13 + 17 14 buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ]; 15 + 18 16 installFlags = [ "PREFIX=\${out}" ]; 17 + 18 + meta = with lib; { 19 + description = "Tiling tabbed window manager designed with keyboard users in mind"; 20 + homepage = "http://modeemi.fi/~tuomov/ion"; 21 + platforms = with platforms; linux; 22 + license = licenses.lgpl21; 23 + maintainers = with maintainers; [ ]; 24 + }; 19 25 }