pineapple-pictures: 0.7.1 -> 0.7.2
This commit is contained in:
parent
f03d4e0eec
commit
6eef340c21
1 changed files with 9 additions and 9 deletions
|
@ -9,15 +9,15 @@
|
||||||
, cmake
|
, cmake
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "pineapple-pictures";
|
pname = "pineapple-pictures";
|
||||||
version = "0.7.1";
|
version = "0.7.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "BLumia";
|
owner = "BLumia";
|
||||||
repo = "pineapple-pictures";
|
repo = "pineapple-pictures";
|
||||||
rev = version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-6peNZc+rrQrUFSrn1AK8lZsy4RQf9DwpmXY0McfEus8=";
|
hash = "sha256-dD0pHqw1Gxp+yxzYdm2ZgxiHKyuJKBGYpjv99B1Da1g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -36,12 +36,12 @@ stdenv.mkDerivation rec {
|
||||||
"-DPREFER_QT_5=OFF"
|
"-DPREFER_QT_5=OFF"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Homebrew lightweight image viewer";
|
description = "Homebrew lightweight image viewer";
|
||||||
homepage = "https://github.com/BLumia/pineapple-pictures";
|
homepage = "https://github.com/BLumia/pineapple-pictures";
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
mainProgram = "ppic";
|
mainProgram = "ppic";
|
||||||
maintainers = with maintainers; [ rewine ];
|
maintainers = with lib.maintainers; [ rewine ];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue