Skip to content

Commit

Permalink
Gwyddion: init at 2.48
Browse files Browse the repository at this point in the history
  • Loading branch information
P-E-Meunier authored and globin committed Aug 11, 2017
1 parent 0604106 commit 443ac23
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/applications/science/chemistry/gwyddion/default.nix
@@ -0,0 +1,31 @@
{ stdenv, fetchurl, gtk2, pkgconfig }:

with stdenv.lib;

stdenv.mkDerivation {
name = "gwyddion";
version = "2.48";
src = fetchurl {
url = "http://sourceforge.net/projects/gwyddion/files/gwyddion/2.48/gwyddion-2.48.tar.xz";
sha256 = "119iw58ac2wn4cas6js8m7r1n4gmmkga6b1y711xzcyjp9hshgwx";
};
buildInputs = [ gtk2 pkgconfig ];
meta = {
homepage = http://gwyddion.net/;

description = "Scanning probe microscopy data visualization and analysis";

longDescription = ''
A modular program for SPM (scanning probe microscopy) data
visualization and analysis. Primarily it is intended for the
analysis of height fields obtained by scanning probe microscopy
techniques (AFM, MFM, STM, SNOM/NSOM) and it supports a lot of
SPM data formats. However, it can be used for general height
field and (greyscale) image processing, for instance for the
analysis of profilometry data or thickness maps from imaging
spectrophotometry.
'';
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -2384,6 +2384,8 @@ with pkgs;

gvolicon = callPackage ../tools/audio/gvolicon {};

gwyddion = callPackage ../applications/science/chemistry/gwyddion {};

gzip = callPackage ../tools/compression/gzip { };

gzrt = callPackage ../tools/compression/gzrt { };
Expand Down

0 comments on commit 443ac23

Please sign in to comment.