diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-12-13 21:25:24 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-24 01:40:13 +0200 |
commit | 24fd1fe6c62b7a9fc347794fde043285da272f5c (patch) | |
tree | 65557bf1d241ca389b619dbd24d18d51932ee030 /pkgs/genius/default.nix | |
download | NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.tar.gz NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.tar.zst NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.zip |
Initial commit published for NUR
Diffstat (limited to 'pkgs/genius/default.nix')
-rw-r--r-- | pkgs/genius/default.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/genius/default.nix b/pkgs/genius/default.nix new file mode 100644 index 00000000..b40d1d01 --- /dev/null +++ b/pkgs/genius/default.nix | |||
@@ -0,0 +1,19 @@ | |||
1 | { stdenv, fetchurl, mpfr, glib, hicolor-icon-theme, gtk2, intltool, gnome-doc-utils, python3, gnome2, autoconf, automake, libtool, ncurses, readline, pkg-config, }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | name = "genius-${version}"; | ||
4 | version = "1.0.24"; | ||
5 | src = fetchurl { | ||
6 | url = "https://download.gnome.org/sources/genius/1.0/${name}.tar.xz"; | ||
7 | sha256 = "772f95f6ae4716d39bb180cd50e8b6b9b074107bee0cd083b825e1e6e55916b6"; | ||
8 | }; | ||
9 | buildInputs = [ | ||
10 | mpfr glib hicolor-icon-theme gtk2 intltool gnome-doc-utils python3 gnome2.gtksourceview | ||
11 | autoconf automake libtool ncurses readline pkg-config | ||
12 | ]; | ||
13 | preConfigure = '' | ||
14 | autoreconf -fi | ||
15 | ''; | ||
16 | preBuild = '' | ||
17 | sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool | ||
18 | ''; | ||
19 | } | ||