vnote: fix by using qt's mkDerivation, 2.6 -> 2.7.2
https://github.com/tamlok/vnote/releases/tag/v2.7.2 https://github.com/tamlok/vnote/releases/tag/v2.7.1 https://github.com/tamlok/vnote/releases/tag/v2.7
This commit is contained in:
parent
f6b4b33e40
commit
4a69c974f3
@ -1,9 +1,9 @@
|
|||||||
{ stdenv, fetchFromGitHub, qmake, qtbase, qtwebengine, hicolor-icon-theme, makeDesktopItem }:
|
{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtwebengine, hicolor-icon-theme }:
|
||||||
|
|
||||||
let
|
let
|
||||||
description = "A note-taking application that knows programmers and Markdown better";
|
description = "A note-taking application that knows programmers and Markdown better";
|
||||||
in stdenv.mkDerivation rec {
|
in mkDerivation rec {
|
||||||
version = "2.6";
|
version = "2.7.2";
|
||||||
pname = "vnote";
|
pname = "vnote";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
@ -11,13 +11,13 @@ in stdenv.mkDerivation rec {
|
|||||||
repo = "vnote";
|
repo = "vnote";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "10lnzzwz7fjj55kbn3j6gdl9yi6a85mdjis586p3zcc4830mlv91";
|
sha256 = "0mk1ingcyznpwq4bfkxa8nx9yx5y3kgsmr4qffriq7bh1cx9dwjy";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake ];
|
nativeBuildInputs = [ qmake ];
|
||||||
buildInputs = [ qtbase qtwebengine hicolor-icon-theme ];
|
buildInputs = [ qtbase qtwebengine hicolor-icon-theme ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
inherit description;
|
inherit description;
|
||||||
homepage = "https://tamlok.github.io/vnote";
|
homepage = "https://tamlok.github.io/vnote";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user