libGDSII: init at 0.21
This commit is contained in:
parent
09d1372cb9
commit
4c45a5f874
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libGDSII";
|
||||
version = "0.21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "HomerReid";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-EXEt7l69etcBdDdEDlD1ODOdhTBZCVjgY1jhRUDd/W0=";
|
||||
};
|
||||
|
||||
# File is missing in the repo but automake requires it
|
||||
postPatch = ''
|
||||
touch ChangeLog
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library and command-line utility for reading GDSII geometry files";
|
||||
homepage = "https://github.com/HomerReid/libGDSII";
|
||||
license = [ licenses.gpl2Only ];
|
||||
maintainers = with maintainers; [ sheepforce markuskowa ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -27322,6 +27322,8 @@ with pkgs;
|
||||
|
||||
ledger-udev-rules = callPackage ../os-specific/linux/ledger-udev-rules {};
|
||||
|
||||
libGDSII = callPackage ../development/libraries/science/chemistry/libGDSII { };
|
||||
|
||||
inherit (callPackages ../data/fonts/liberation-fonts { })
|
||||
liberation_ttf_v1
|
||||
liberation_ttf_v2
|
||||
|
Loading…
Reference in New Issue
Block a user