mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21e3ff658a
Scilab note: the parameters already had pointed to nonexistent dirs before this set of refactoring. But that config wasn't even used by default.
17 lines
577 B
Nix
17 lines
577 B
Nix
{ stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ion-3-20090110";
|
|
meta = {
|
|
description = "Tiling tabbed window manager designed with keyboard users in mind";
|
|
homepage = http://modeemi.fi/~tuomov/ion;
|
|
};
|
|
src = fetchurl {
|
|
url = http://tuomov.iki.fi/software/dl/ion-3-20090110.tar.gz;
|
|
sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
|
|
};
|
|
buildInputs = [ xlibsWrapper lua gettext groff ];
|
|
buildFlags = "LUA_DIR=${lua} X11_PREFIX=/no-such-path PREFIX=\${out}";
|
|
installFlags = "PREFIX=\${out}";
|
|
}
|