tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
beancount-language-server: 1.3.0 -> 1.3.1
Peter Hoeg
2 years ago
98d21463
dcf9f37a
+3
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
language-servers
beancount-language-server
default.nix
+3
-4
pkgs/development/tools/language-servers/beancount-language-server/default.nix
···
5
5
6
6
rustPlatform.buildRustPackage rec {
7
7
pname = "beancount-language-server";
8
8
-
version = "1.3.0";
8
8
+
version = "1.3.1";
9
9
10
10
src = fetchFromGitHub {
11
11
owner = "polarmutex";
12
12
repo = "beancount-language-server";
13
13
rev = "v${version}";
14
14
-
sha256 = "sha256-X3Mun5ZooipUkkcgEOC7ou0d1upABjmMs9MegPBXPyQ=";
14
14
+
hash = "sha256-9IkbEOG6xcmpowsLj/RHnMFGQxh02JMQsTVli4hvs/M=";
15
15
};
16
16
17
17
-
cargoHash = "sha256-OI/MGcFOJHEZJfqCz/+CxHB3VSn6joS7L7FqRYrS4us=";
17
17
+
cargoHash = "sha256-qhN2//hhCaKpm0HAiUL/CfdrtvAXgR34vXBECB8UDxE=";
18
18
19
19
doInstallCheck = true;
20
20
postInstallCheck = ''
···
28
28
maintainers = with maintainers; [ polarmutex ];
29
29
};
30
30
}
31
31
-