mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
24 lines
550 B
Nix
24 lines
550 B
Nix
{ lib, fetchurl, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
pname = "keepnote";
|
|
version = "0.7.8";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "http://keepnote.org/download/keepnote-${version}.tar.gz";
|
|
sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
|
|
};
|
|
|
|
propagatedBuildInputs = with python2Packages; [ pyGtkGlade ];
|
|
|
|
# Testing fails.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Note taking application";
|
|
homepage = "http://keepnote.org";
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|