summary refs log tree commit diff
path: root/pkgs/applications/science/electronics/gerbv/default.nix
diff options
context:
space:
mode:
authorMatthew O'Gorman <mog@rldn.net>2015-11-16 15:40:36 -0600
committerMatthew O'Gorman <mog@rldn.net>2015-12-15 21:11:54 -0500
commita76241c6cb3431e9517750db642760baee626187 (patch)
tree5fa87414d727817aed3e2049a5b4196eef4e4190 /pkgs/applications/science/electronics/gerbv/default.nix
parentca186286d73676c3a80884279d6e4a4e238f9ef4 (diff)
downloadnixpkgs-a76241c6cb3431e9517750db642760baee626187.tar
nixpkgs-a76241c6cb3431e9517750db642760baee626187.tar.gz
nixpkgs-a76241c6cb3431e9517750db642760baee626187.tar.bz2
nixpkgs-a76241c6cb3431e9517750db642760baee626187.tar.lz
nixpkgs-a76241c6cb3431e9517750db642760baee626187.tar.xz
nixpkgs-a76241c6cb3431e9517750db642760baee626187.tar.zst
nixpkgs-a76241c6cb3431e9517750db642760baee626187.zip
gerbv: init at git-2015-10-07
Diffstat (limited to 'pkgs/applications/science/electronics/gerbv/default.nix')
-rw-r--r--pkgs/applications/science/electronics/gerbv/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/science/electronics/gerbv/default.nix b/pkgs/applications/science/electronics/gerbv/default.nix
new file mode 100644
index 00000000000..5a86ff3e5f8
--- /dev/null
+++ b/pkgs/applications/science/electronics/gerbv/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchgit, pkgconfig, gettext, libtool, automake, autoconf, cairo, gtk, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  name = "gerbv-${version}";
+  version = "2015-10-08";
+
+  src = fetchgit {
+    url = git://git.geda-project.org/gerbv.git;
+    rev = "76b8b67bfa10823ce98f1c4c3b49a2afcadf7659";
+    sha256 = "1l2x8sb1c3gq00i71fdndkqwa7148mrranayafqw9pq63869l92w";
+  };
+
+  buildInputs = [ pkgconfig gettext libtool automake autoconf cairo gtk autoreconfHook ];
+
+  configureFlags = ["--disable-update-desktop-database"];
+
+  meta = with stdenv.lib; {
+    description = "A Gerber (RS-274X) viewer";
+    homepage = http://gerbv.geda-project.org/;
+    maintainers = with maintainers; [ mog ];
+    platforms = platforms.linux;
+    license = licenses.gpl2;
+  };
+}