mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
30 lines
733 B
Nix
30 lines
733 B
Nix
{ stdenv, fetchurl, libglade, gtk2, guile, libxml2, perl
|
|
, intltool, libtool, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "drgeo-${version}";
|
|
version = "1.1.0";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ofset/${name}.tar.gz";
|
|
sha256 = "05i2czgzhpzi80xxghinvkyqx4ym0gm9f38fz53idjhigiivp4wc";
|
|
};
|
|
patches = [ ./struct.patch ];
|
|
|
|
buildInputs = [libglade gtk2 guile libxml2
|
|
perl intltool libtool pkgconfig];
|
|
|
|
prebuild = ''
|
|
cp drgeo.desktop.in drgeo.desktop
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Interactive geometry program";
|
|
homepage = https://sourceforge.net/projects/ofset;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|