mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
ca34a788fe
Co-authored-by: markuskowa <markus.kowalewski@gmail.com>
41 lines
803 B
Nix
41 lines
803 B
Nix
{ lib
|
|
, stdenv
|
|
, mkDerivation
|
|
, fetchurl
|
|
, cmake
|
|
, pkg-config
|
|
, hicolor-icon-theme
|
|
, openbabel
|
|
, desktop-file-utils
|
|
, qttranslations
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "molsketch";
|
|
version = "0.7.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/molsketch/Molsketch-${version}-src.tar.gz";
|
|
hash = "sha256-82iNJRiXqESwidjifKBf0+ljcqbFD1WehsXI8VUgrwQ=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
cmakeFlags="$cmakeFlags -DMSK_PREFIX=$out"
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [
|
|
hicolor-icon-theme
|
|
openbabel
|
|
desktop-file-utils
|
|
qttranslations
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "2D molecule editor";
|
|
homepage = "https://sourceforge.net/projects/molsketch/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.fortuneteller2k ];
|
|
};
|
|
}
|