mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / by-name / li / libGDSII / package.nix
blob36d13c9ed8c34843a809ded682a1ce067af458c8
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "libGDSII";
10   version = "0.21";
12   src = fetchFromGitHub {
13     owner = "HomerReid";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-EXEt7l69etcBdDdEDlD1ODOdhTBZCVjgY1jhRUDd/W0=";
17   };
19   # File is missing in the repo but automake requires it
20   postPatch = ''
21     touch ChangeLog
22   '';
24   nativeBuildInputs = [ autoreconfHook ];
26   meta = with lib; {
27     description = "Library and command-line utility for reading GDSII geometry files";
28     mainProgram = "GDSIIConvert";
29     homepage = "https://github.com/HomerReid/libGDSII";
30     license = [ licenses.gpl2Only ];
31     maintainers = with maintainers; [
32       sheepforce
33       markuskowa
34     ];
35     platforms = platforms.linux;
36   };