forked from mirrors/nixpkgs
furtherance 1.8.0 changed rec into finalAttrs
This commit is contained in:
parent
eed18924fe
commit
a1768a41da
|
@ -4,21 +4,21 @@
|
||||||
, dbus, gtk4, sqlite
|
, dbus, gtk4, sqlite
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "furtherance";
|
pname = "furtherance";
|
||||||
version = "1.8.0";
|
version = "1.8.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lakoliu";
|
owner = "lakoliu";
|
||||||
repo = "Furtherance";
|
repo = "Furtherance";
|
||||||
rev = "v${version}";
|
rev = "v${finalAttrs.version}";
|
||||||
sha256 = "sha256-l62k7aFyKfYWO+Z85KR8tpwts28pamINHYp/oKuHkhc=";
|
hash = "sha256-l62k7aFyKfYWO+Z85KR8tpwts28pamINHYp/oKuHkhc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||||
inherit src;
|
inherit (finalAttrs) src;
|
||||||
name = "${pname}-${version}";
|
name = "${finalAttrs.pname}-${finalAttrs.version}";
|
||||||
sha256 = "sha256-AuXSX+64rJcTChpsE5tqk67bihKkSyimFAMhb1VdbBs=";
|
hash = "sha256-AuXSX+64rJcTChpsE5tqk67bihKkSyimFAMhb1VdbBs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -48,4 +48,4 @@ stdenv.mkDerivation rec {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ CaptainJawZ ];
|
maintainers = with maintainers; [ CaptainJawZ ];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue